Skip to main content

qiqi.page

page 模块提供跳转到指定界面的功能。

API

  • openForm(options): Promise<boolean> 打开单据卡片详情界面

options 对象属性如下:

参数说明类型默认值
mode模式 (View查看态, Edit编辑态)string-
id单据idstring-
entityName业务对象的名称string
contextOrgId使用组织id, 对于受管控档案必传string
  • demo
// 打开报销单查看态
qiqi.page.openForm({
id: 'xxxx',
mode: 'View',
entityName: 'Reimburse'
});